home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / scheme / sicp / graphics.scm < prev    next >
Text File  |  1993-07-17  |  3KB  |  103 lines

  1. #| -*-Scheme-*-
  2.  
  3. $Header: /scheme/sicp/RCS/graphics.scm,v 1.3 1991/04/12 00:12:11 arthur Exp $
  4.  
  5. Copyright (c) 1987, 1988, 1989, 1990 Massachusetts Institute of Technology
  6.  
  7. This material was developed by the Scheme project at the Massachusetts
  8. Institute of Technology, Department of Electrical Engineering and
  9. Computer Science.  Permission to copy this software, to redistribute
  10. it, and to use it for any purpose is granted, subject to the following
  11. restrictions and understandings.
  12.  
  13. 1. Any copy made of this software must include this copyright notice
  14. in full.
  15.  
  16. 2. Users of this software agree to make their best efforts (a) to
  17. return to the MIT Scheme project any improvements or extensions that
  18. they make, so that these may be included in future releases; and (b)
  19. to inform MIT of noteworthy uses of this software.
  20.  
  21. 3. All materials developed as a consequence of the use of this
  22. software shall duly acknowledge such use, in accordance with the usual
  23. standards of acknowledging credit in academic research.
  24.  
  25. 4. MIT has made no warrantee or representation that the operation of
  26. this software will be error-free, and MIT is under no obligation to
  27. provide any services, by way of maintenance, update, or otherwise.
  28.  
  29. 5. In conjunction with products arising from the use of this material,
  30. there shall be no use of the name of the Massachusetts Institute of
  31. Technology nor of any adaptation thereof in any advertising,
  32. promotional, or sales literature without prior written consent from
  33. MIT in each case. |#
  34.  
  35. ;;;; Student graphics Interface
  36. ;;;; implemented for X Windows
  37.  
  38. (declare (usual-integrations))
  39.  
  40. (define clear-graphics)
  41. (define clear-point)
  42. (define draw-line-to)
  43. (define draw-point)
  44. (define graphics-available?)
  45. (define graphics-text)
  46. (define init-graphics)
  47. (define position-pen)
  48.  
  49. (define graphics-package
  50.   (make-environment
  51.  
  52.     (define graphics-device #F)
  53.  
  54.     (define (init-if-necessary)
  55.       (if (not graphics-device)
  56.       (init-graphics)))
  57.  
  58.     (set! clear-graphics
  59.       (lambda ()
  60.         (init-if-necessary)
  61.         (graphics-clear graphics-device)
  62.         (graphics-move-cursor graphics-device 0 0)))
  63.  
  64.     (set! clear-point
  65.       (lambda (x y)
  66.         (init-if-necessary)
  67.         (graphics-erase-point graphics-device x y)))
  68.  
  69.     (set! draw-line-to
  70.       (lambda (x y)
  71.         (init-if-necessary)
  72.         (graphics-drag-cursor graphics-device x y)))
  73.  
  74.     (set! draw-point
  75.       (lambda (x y)
  76.         (init-if-necessary)
  77.         (graphics-draw-point graphics-device x y)))
  78.  
  79.     (set! graphics-available?
  80.       (lambda ()
  81.         (graphics-type-available? x-graphics-device-type)))
  82.  
  83.     (set! graphics-text
  84.       (lambda (text x y)
  85.         (init-if-necessary)
  86.         ;; Accepts different parameters on Chipmunks.
  87.         (graphics-draw-text graphics-device x y text)))
  88.  
  89.     (set! init-graphics
  90.       (lambda ()
  91.         (let ((display (x-open-display #f)))
  92.           (set! graphics-device
  93.             (make-graphics-device x-graphics-device-type
  94.                       display "512x388" #f)))
  95.         (graphics-set-coordinate-limits graphics-device -256 -195 255 194)
  96.         (graphics-move-cursor graphics-device 0 0)))
  97.  
  98.     (set! position-pen
  99.       (lambda (x y)
  100.         (init-if-necessary)
  101.         (graphics-move-cursor graphics-device x y)))
  102.  
  103. ))